home *** CD-ROM | disk | FTP | other *** search
/ The Best of MacTutor - S…e Code for Volumes 1 to 5 / The Best of MacTutor - Source Code for Volume 1-5 (Wayzata Technology)(6031)(1990).bin / Source Code / #27 (Dec 87) / c daisy printer driver / control key finder < prev    next >
Text File  |  1987-10-24  |  185b  |  9 lines

  1. REM This program finds control codes
  2. CLS
  3. PRINT "enter your control character..."
  4. key:
  5.     key$=INKEY$
  6.     IF key$="" THEN GOTO key
  7.     PRINT "The ascii code is ";ASC(key$)
  8.     GOTO key
  9.